This commit is contained in:
2025-01-17 10:23:15 +08:00
parent fe3f626290
commit e65d53f794
3 changed files with 7 additions and 14 deletions

View File

@@ -0,0 +1,6 @@
.settings-heading {
padding: 1em 0;
}
.kintoneplugin-input-text {
width: 20em;
}

View File

@@ -1,7 +0,0 @@
declare global {
namespace JSX {
interface IntrinsicElements {
[key: string]: any;
}
}
}

View File

@@ -69,13 +69,7 @@ export default defineConfig({
// console.log(chunkInfo);
return 'src/js/[name].js'; // 默认处理为 JS 文件
},
assetFileNames: (assetInfo) => {
if (assetInfo.names[0].endsWith('.css') && assetInfo.originalFileNames[0] === 'index.html') {
return 'src/css/config.css';
}
// 其他资源文件的默认处理
return 'src/[ext]/[name].[ext]';
},
assetFileNames: 'src/[ext]/[name].[ext]',
}
}
}