You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my case breakpoints setted inside VS Code were not working (pausing) browser running the app (I am using Chrome on Ubuntu OS).
To fix it I have done next:
Updated Pixi to 7.2.4
Modified webpack.config in 2 places:
....
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
// This line is VERY important for VS Code debugging to attach properly
// Tamper with it at your own risks
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
},
....
devtool: argv.mode === 'development' ? 'source-map' : undefined,
....
In my case breakpoints setted inside VS Code were not working (pausing) browser running the app (I am using Chrome on Ubuntu OS).
To fix it I have done next:
(these changes were grabbed from https://github.com/GuillaumeDesforges/pixijs-typescript-starter )
My VS Code launch.json looks like this:
Hope it can help if you encounter same issue.
The text was updated successfully, but these errors were encountered: