Browse Source

add css to asset input

visuddhinanda 3 days ago
parent
commit
dd13cbca5d
1 changed files with 8 additions and 1 deletions
  1. 8 1
      api-v13/vite.config.ts

+ 8 - 1
api-v13/vite.config.ts

@@ -9,10 +9,17 @@ export default defineConfig({
     plugins: [
         laravel({
             input: [
+                'resources/css/app.css', // library/* + blog 列表页
                 'resources/css/library.css', // library/* + blog 列表页
-		'resources/css/modules/library-index.css',
+                'resources/css/modules/library-index.css',
+                'resources/css/modules/wiki.css',
+                'resources/css/modules/tipitaka.css',
+                'resources/css/modules/anthology.css',
                 'resources/css/reader.css', // 全站阅读页(待建)
+                'resources/css/main.css', // 全站阅读页(待建)
                 'resources/js/app.js',
+                'resources/js/reader.js',
+                'resources/js/modules/term-tooltip.js',
             ],
             refresh: true,
         }),