We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c068576 commit c65863bCopy full SHA for c65863b
vite.config.mts
@@ -4,14 +4,13 @@ import { defineConfig } from "vite";
4
import { viteStaticCopy } from "vite-plugin-static-copy";
5
import react from "@vitejs/plugin-react";
6
import tsconfigPaths from "vite-tsconfig-paths";
7
-import path from "path";
8
9
export default defineConfig({
10
plugins: [react(), tsconfigPaths(), viteStaticCopy({
11
targets: [
12
{
13
- src: path.resolve(__dirname, './oss-attribution') + '/**/*',
14
- dest: "./public",
+ src: 'oss-attribution/**/*',
+ dest: "./",
15
},
16
],
17
}),
0 commit comments