-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_svelte.config.js
46 lines (40 loc) · 1.1 KB
/
_svelte.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Попытка прикрутить nested rules в svelte.
// const postcss = require('postcss');
// const postcssNested = require('postcss-nested');
// const postcssPresetEnv = require('postcss-preset-env');
// preprocess: {
// style: async ({ content, attributes }) => {
// if (attributes.type !== 'text/scss') {
// return;
// }
// const result = await renderScss({
// data: content,
// sourceMap: 'style.css.map',
// omitSourceMapUrl: true,
// });
// return {
// code: result.css.toString('utf8'),
// map: result.map.toString('utf8'),
// };
// },
// },
// module.exports = {
// compilerOptions: {
// css: false // Убирает css из js-бандла
// },
// preprocess: {
// style: async ({ content }) => {
// const result = await postcss([
// postcssNested,
// postcssPresetEnv({
// stage: 2
// })
// ]).process(content, {
// from: undefined
// });
// return {
// code: result.css
// };
// }
// }
// };