feat: add RSS feeds management page with automation rules
This commit is contained in:
28
vite.config.ts.bak
Normal file
28
vite.config.ts.bak
Normal file
@@ -0,0 +1,28 @@
|
||||
import { jsxLocPlugin } from "@builder.io/vite-plugin-jsx-loc";
|
||||
import react from "@vitejs/plugin-react";
|
||||
import path from "path";
|
||||
import { defineConfig } from "vite";
|
||||
import { webDevPreviewerPlugin } from "vite-plugin-web-dev-previewer";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react(), jsxLocPlugin(), webDevPreviewerPlugin()],
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": path.resolve(import.meta.dirname, "client", "src"),
|
||||
"@shared": path.resolve(import.meta.dirname, "shared"),
|
||||
"@assets": path.resolve(import.meta.dirname, "attached_assets"),
|
||||
},
|
||||
},
|
||||
envDir: path.resolve(import.meta.dirname),
|
||||
root: path.resolve(import.meta.dirname, "client"),
|
||||
build: {
|
||||
outDir: path.resolve(import.meta.dirname, "dist/public"),
|
||||
emptyOutDir: true,
|
||||
},
|
||||
server: {
|
||||
fs: {
|
||||
strict: true,
|
||||
deny: ["**/.*"],
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user