| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import { fileURLToPath, URL } from 'node:url'
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- import openccPlugin from './src/plugins/opencc-plugin'
- // https://vitejs.dev/config/
- export default defineConfig({
- base: '',
- plugins: [
- openccPlugin,
- vue()
- ],
- server: {
- host: '0.0.0.0',
- port: 5173,
- proxy: {
- '/api': {
- target: 'https://server.pptist.cn',
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/api/, ''),
- },
- '/yjs-auth': {
- target: 'https://yjsredis.cocorobo.cn',
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/yjs-auth/, ''),
- }
- }
- },
- css: {
- preprocessorOptions: {
- scss: {
- additionalData: `
- @import '@/assets/styles/variable.scss';
- @import '@/assets/styles/mixin.scss';
- `
- },
- },
- },
- resolve: {
- alias: {
- '@': fileURLToPath(new URL('./src', import.meta.url))
- }
- }
- })
|