Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

404 when calling open-stack-frame-in-editor #54

Closed
ronanb80 opened this issue Nov 29, 2019 · 1 comment
Closed

404 when calling open-stack-frame-in-editor #54

ronanb80 opened this issue Nov 29, 2019 · 1 comment

Comments

@ronanb80
Copy link

I get a 404 error when clicking on the code displayed in the overlay. I am testing this plugin out on a basic project created in TypeScript using Webpack 4 and Webpack server dev 3.9.0.

webpack.config.js:

const path = require('path');
const ErrorOverlayPlugin = require('error-overlay-webpack-plugin');

module.exports = {
    entry: './src/ts/app.ts',
    mode: 'development',
    module: {
        rules: [
            {
                test: /\.tsx?$/,
                use: 'ts-loader',
                exclude: /node-modules/
            }
        ]
    },
    resolve: {
        extensions: ['.tsx', '.ts', '.js']
    },
    output: {
        filename: 'bundle.js',
        path: path.resolve(__dirname, 'dist'),
        publicPath: '/dist'
    },
    plugins: [new ErrorOverlayPlugin()],
    devtool: 'inline-source-map'
};

Console output:
Capture

@gregberge
Copy link
Owner

Outdated, feel free to open a new issue it if you meet that bug.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants