Sencha Custom js 파일 등록

2024. 12. 5. 17:09Javascript/Sencha

app.json에 추가

{
    "name": "MyApp",
    "version": "1.0.0",
    "requires": [
        "ext"
    ],
    "id": "MyApp",
    "js": [
        {
            "path": "app.js",
            "bundle": true
        },
        {
            "path": "resources/scripts/myCustomScript.js",
            "includeInBundle": false
        }
    ],
    "css": [
        {
            "path": "resources/css/app.css",
            "bundle": true
        }
    ]
}

HTML 파일에 등록

<!DOCTYPE html>
<html>
<head>
    <title>Sencha Application</title>
    <script src="path/to/myCustomScript.js"></script>
    <script src="path/to/sencha/app.js"></script>
</head>
<body>
    <div id="app"></div>
</body>
</html>