@tomjs/vite-plugin-vscode 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -140,15 +140,6 @@ export default defineConfig({
|
|
|
140
140
|
}),
|
|
141
141
|
vscode(),
|
|
142
142
|
],
|
|
143
|
-
build: {
|
|
144
|
-
rollupOptions: {
|
|
145
|
-
output: {
|
|
146
|
-
entryFileNames: `assets/[name].js`,
|
|
147
|
-
chunkFileNames: `assets/[name].js`,
|
|
148
|
-
assetFileNames: `assets/[name].[ext]`,
|
|
149
|
-
},
|
|
150
|
-
},
|
|
151
|
-
},
|
|
152
143
|
});
|
|
153
144
|
```
|
|
154
145
|
|
|
@@ -164,15 +155,6 @@ import react from '@vitejs/plugin-react-swc';
|
|
|
164
155
|
// https://vitejs.dev/config/
|
|
165
156
|
export default defineConfig({
|
|
166
157
|
plugins: [react(), vscode()],
|
|
167
|
-
build: {
|
|
168
|
-
rollupOptions: {
|
|
169
|
-
output: {
|
|
170
|
-
entryFileNames: `assets/[name].js`,
|
|
171
|
-
chunkFileNames: `assets/[name].js`,
|
|
172
|
-
assetFileNames: `assets/[name].[ext]`,
|
|
173
|
-
},
|
|
174
|
-
},
|
|
175
|
-
},
|
|
176
158
|
});
|
|
177
159
|
```
|
|
178
160
|
|