-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvite.config.build.css.ts
48 lines (45 loc) · 1.14 KB
/
vite.config.build.css.ts
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
47
48
import { defineConfig } from 'vite'
import reactRefresh from '@vitejs/plugin-react-refresh'
const path = require('path')
const atImport = require('postcss-import')
const config = require('./package.json')
const banner = `/*!
* ${config.name} v${config.version} ${new Date()}
* (c) 2021 @jdf2e.
* Released under the MIT License.
*/`
const { resolve } = path
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: [{ find: '@', replacement: resolve(__dirname, './src') }],
},
css: {
preprocessorOptions: {
scss: {
charset: false,
// example : additionalData: `@import "./src/design/styles/variables";`
// dont need include file extend .scss
additionalData: `@import "@/styles/variables.scss";`,
},
postcss: {
plugins: [atImport({ path: path.join(__dirname, 'src`') })],
},
},
},
plugins: [reactRefresh()],
build: {
emptyOutDir: false,
rollupOptions: {
output: {
banner,
},
},
lib: {
entry: './dist/styles/themes/default.scss',
formats: ['es'],
name: 'style',
fileName: 'style',
},
},
})