Open yanquer opened 3 months ago
why not allow set distDir?
In nextjs14. I can run next build src/renderer with dist: "../../app" ,
next build src/renderer
dist: "../../app"
why nextron not allow?
my project
├── src │ ├── main │ ├── renderer
nextron.config.js
module.exports = { // specify an alternate main src directory, defaults to 'main' mainSrcDir: 'src/main', // specify an alternate renderer src directory, defaults to 'renderer' rendererSrcDir: 'src/renderer', // main process' webpack config webpack: (config, env) => { // do some stuff here return config }, }
I don't know but nextron js tends to have lots of problems.
why not allow set distDir?
In nextjs14. I can run
next build src/renderer
withdist: "../../app"
,why nextron not allow?
my project
nextron.config.js