This development environment is designed to allow vendors and internal developers
to create, test, and refine assets for PPSC without impacting the live production
site. All development files are stored in the /_dev directory and are publicly accessible for testing and review.
/_dev/css/styles.css – Development-only stylesheet/_dev/script/scripts.js – Development-only JavaScript file/_dev/ – Root directory containing additional subfolders as neededThe development environment uses relative paths to load assets into the page:
<headcode>
<!-- before closing head tag -->
<link rel="stylesheet" href="./css/styles.css">
</headcode>
<bodycode>
<!-- after opening body tag -->
</bodycode>
<footcode>
<!-- before closing body tag -->
<script src="./script/scripts.js"></script>
</footcode>
</body> tag and is used for testing custom JavaScript functionality without touching production
scripts./_dev are temporary and should not be used in production.For questions or access issues, contact the PPSC Marketing & Communications development team.