-
Notifications
You must be signed in to change notification settings - Fork 260
/
vite.config.build.css.ts
51 lines (48 loc) · 1.22 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
49
50
51
import { defineConfig } from 'vite'
import reactRefresh from '@vitejs/plugin-react'
import path from 'path'
import atImport from 'postcss-import'
import config from './package.json'
const projectID = process.env.VITE_APP_PROJECT_ID
const banner = `/*!
* ${config.name} v${config.version} ${new Date()}
* (c) 2023 @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${
projectID ? `-${projectID}` : ''
}.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',
},
},
})