feat: 添加密码管理功能,包括 API、数据库支持和前端界面
This commit is contained in:
@@ -9,7 +9,14 @@ export default defineConfig({
|
||||
rollupOptions: {
|
||||
input: {
|
||||
popup: path.resolve(__dirname, "popup.html"),
|
||||
options: path.resolve(__dirname, "options.html")
|
||||
options: path.resolve(__dirname, "options.html"),
|
||||
background: path.resolve(__dirname, "src/background.js"),
|
||||
content: path.resolve(__dirname, "src/content/main.js")
|
||||
},
|
||||
output: {
|
||||
entryFileNames: "[name].js",
|
||||
chunkFileNames: "assets/[name].js",
|
||||
assetFileNames: "assets/[name][extname]"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user