@helloleo/vite-config 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/dist/start.js +1 -6
  2. package/package.json +1 -1
package/dist/start.js CHANGED
@@ -228,12 +228,7 @@ function defineConfig(options = {}) {
228
228
  });
229
229
  } else {
230
230
  config = mergeConfig(config, {
231
- server: { host: "::", port: 8080, allowedHosts: true },
232
- ...isDev ? {
233
- server: {
234
- watch: { awaitWriteFinish: { stabilityThreshold: 1000, pollInterval: 100 } }
235
- }
236
- } : {}
231
+ server: { host: true, port: 5173, allowedHosts: true }
237
232
  });
238
233
  }
239
234
  return config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helloleo/vite-config",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "authors": [
5
5
  "Herbie Vine <herbie@terros>"
6
6
  ],