mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
import {defineConfig} from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import {createHtmlPlugin} from 'vite-plugin-html'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import {AntDesignVueResolver} from 'unplugin-vue-components/resolvers'
|
|
import {fileURLToPath, URL} from 'url'
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
|
import vitePluginBuildId from 'vite-plugin-build-id'
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
},
|
|
extensions: [
|
|
'.mjs',
|
|
'.js',
|
|
'.ts',
|
|
'.jsx',
|
|
'.tsx',
|
|
'.json',
|
|
'.vue',
|
|
'.less'
|
|
]
|
|
},
|
|
plugins: [vue(), vueJsx(), vitePluginBuildId(),
|
|
Components({
|
|
resolvers: [AntDesignVueResolver({importStyle: false})]
|
|
}),
|
|
createHtmlPlugin({
|
|
minify: true,
|
|
/**
|
|
* After writing entry here, you will not need to add script tags in `index.html`, the original tags need to be deleted
|
|
* @default src/main.ts
|
|
*/
|
|
entry: '/src/main.ts',
|
|
/**
|
|
* If you want to store `index.html` in the specified folder, you can modify it, otherwise no configuration is required
|
|
* @default index.html
|
|
*/
|
|
template: 'index.html',
|
|
|
|
/**
|
|
* Data that needs to be injected into the index.html ejs template
|
|
*/
|
|
inject: {
|
|
data: {
|
|
title: 'Nginx UI',
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
define: {
|
|
'APP_VERSION': JSON.stringify(process.env.npm_package_version)
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
less: {
|
|
javascriptEnabled: true,
|
|
}
|
|
},
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'https://nginx.jackyu.cn/',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
ws: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
chunkSizeWarningLimit: 600
|
|
}
|
|
})
|