We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b05f94 commit 4c1377bCopy full SHA for 4c1377b
vite.config.js vite.config.mjs
@@ -1,5 +1,6 @@
1
import {defineConfig} from 'vite';
2
import Vue from '@vitejs/plugin-vue';
3
+import tailwindcss from '@tailwindcss/vite';
4
import path from 'path';
5
import copy from 'rollup-plugin-copy';
6
import i18nExtractKeys from './lib/pkp/tools/i18nExtractKeys.vite.js';
@@ -11,6 +12,7 @@ export default defineConfig(({mode}) => {
11
12
process.env.NODE_ENV = mode;
13
return {
14
plugins: [
15
+ tailwindcss(),
16
i18nExtractKeys({
17
// existing in tpl files, to be replaced in future
18
extraKeys: [
0 commit comments