Skip to content

Commit

Permalink
changed path to use context
Browse files Browse the repository at this point in the history
  • Loading branch information
lucsomers101 committed Jan 25, 2024
1 parent 8aee7a0 commit 8cd1214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const webpack = require('webpack');
const config = {
target: 'webworker', // vscode extensions run in webworker context for VS Code web 📖 -> https://webpack.js.org/configuration/target/#target
context: path.resolve(__dirname, 'src'),
entry: './src/extension.ts', // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
entry: './extension.ts', // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
output: {
// the bundle is stored in the 'dist' folder (check package.json), 📖 -> https://webpack.js.org/configuration/output/
path: path.resolve(__dirname, 'dist'),
Expand Down

0 comments on commit 8cd1214

Please sign in to comment.