sveltejs / svelte-devtools

A browser extension to inspect Svelte application by extending your browser devtools capabilities
https://chromewebstore.google.com/detail/svelte-devtools/kfidecgcdjjfpeckbblhmfkhmlgecoff
MIT License
1.48k stars 79 forks source link

Change webpack config example #39

Closed pauloffb closed 3 years ago

pauloffb commented 3 years ago

In order for the extension to work with svelte-loader > 3 with webpack I had to change config to

Change webpack config to:

options: {
  compilerOptions: {
    dev: true,
  },
},

Don't know if there are unexpected side effects though.