-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
48 lines (47 loc) · 1.41 KB
/
vite.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
47
48
// import { defineConfig } from 'vite'
// import reactRefresh from '@vitejs/plugin-react-refresh'
// import { resolve } from 'path'
// // https://vitejs.dev/config/
// export default defineConfig({
// plugins: [reactRefresh()],
// base: './',
// publicDir: 'public',
// resolve: { alias: {
// '@': '/src',
// '@detail': '/src/Pages/WorkoutPages'
// }},
// build: {
// rollupOptions: {
// input: {
// main: resolve(__dirname, 'index.html'),
// nested: resolve(__dirname, './nested/index.html')
// }
// }
// }
// })
import { defineConfig } from 'vite'
import reactRefresh from '@vitejs/plugin-react-refresh'
// https://vitejs.dev/config/
export default defineConfig({
// css: { postcss: { plugins: [ {
// postcssPlugin: 'internal:charset-removal',
// AtRule: {
// charset: (atRule) => {
// if (atRule.name === 'charset') {
// atRule.remove();
// }
// }
// }
// }]}},
plugins: [reactRefresh()],
resolve: { alias: {
'@': '/src',
'@generalPage': '/src/Pages/GeneralPages',
'@userPage': '/src/Pages/UserPages',
'@workoutPage': '/src/Pages/WorkoutPages',
'@PageComponent': '/src/Components/PageComponents/',
'@PageSection': '/src/Components/PageSections',
'@Wrapper': '/src/Components/Wrappers',
'@Navigation': '/src/Components/Navigation'
}},
})